home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue30 / bdeorx / BDEDORX.ZIP / BDEDoRx / bdedorx6.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-12-27  |  552 b   |  36 lines

  1. unit BDEDoRx6;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls;
  8.  
  9. type
  10.   TInfoFrm = class(TForm)
  11.     Memo1: TMemo;
  12.     OkBtn: TButton;
  13.     procedure FormCreate(Sender: TObject);
  14.   private
  15.     { Private-Deklarationen }
  16.   public
  17.     { Public-Deklarationen }
  18.   end;
  19.  
  20. var
  21.   InfoFrm: TInfoFrm;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. uses BDEDoRxS;
  28.  
  29. procedure TInfoFrm.FormCreate(Sender: TObject);
  30. begin
  31.   CalcControlSize(self);
  32.   CalcCenterPos(nil,self);
  33. end;
  34.  
  35. end.
  36.